home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung / Power-Programmierung (Tewi)(1994).iso / magazine / progjour / 1989 / 05 / ms_dos.asm < prev    next >
Assembly Source File  |  1989-06-27  |  203b  |  17 lines

  1.     title    ms_dos
  2.     .model    small
  3.     .code
  4.     public    ms_dos
  5.  
  6. ;;    ms dos
  7. ;
  8. ;    note    entry/exit conditions defined
  9. ;        in dos technical reference
  10. ;
  11. ms_dos    proc
  12.     int    21h
  13.     ret
  14. ms_dos    endp
  15.  
  16.             end
  17.